Headers
The access token generated after successful registration
Response
Created
Example:
"the error description"
curl --request POST \
--url https://use.hoop.dev/api/localauth/register \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"name": "<string>",
"password": "<string>"
}
'{
"message": "the error description"
}It registers a new user in the system with the provided email and password. Additionall users are only registered when they are invited by an existing admin user.
curl --request POST \
--url https://use.hoop.dev/api/localauth/register \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"name": "<string>",
"password": "<string>"
}
'{
"message": "the error description"
}The access token generated after successful registration
Created
"the error description"
Was this page helpful?